home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d27 / dm310.arc / ICE.MNU < prev    next >
Text File  |  1990-07-22  |  918b  |  52 lines

  1. Comment
  2. ===================================================
  3.  
  4. DM3 Menu Overlay * CopyRight 1989-90 By Marc Perkel
  5.  
  6. This menu works with ICE Files.
  7.  
  8. ===================================================
  9. EndComment
  10.  
  11. if ColorScreen
  12.    BoxHeaderColor Yellow Mag
  13.    InverseColor Yellow Mag
  14.    BoxBorderColor LGreen Brown
  15.    BoxInsideColor Grey Brown
  16. else
  17.    BoxHeaderColor Black Grey
  18.    InverseColor Black Grey
  19.    BoxBorderColor White Black
  20.    BoxInsideColor Grey Black
  21. endif
  22.  
  23. ClearScreenOnExit Off
  24. BlankTime = 10
  25. BlankMessage = 'Executing DM3'
  26.  
  27. BoxHeader = ' Ice Menu '
  28. DrawBox 42 7 22 6
  29. TextColor Yellow Brown
  30. ClearLine 205
  31. TextColor Grey Brown
  32. UseArrows
  33. CapsColor Yellow Brown
  34.  
  35. Writeln
  36. Writeln '  View ICE File'
  37. Writeln '  UnPack ICE File'
  38. Write   '  Freshen ICE File'
  39.  
  40. OnKey 'E'
  41.   ME %MenuFileName
  42.  
  43. OnKey 'V'
  44.   ICE V %1|MORE
  45.  
  46. OnKey 'U'
  47.   ICE X %1
  48.  
  49. OnKey 'F'
  50.   ICE F %1
  51.  
  52.